Micron Document
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
| SparkN0de-git | SparkN0de |
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Node / ReticulumProjects / Sideband.git / files / recipes / python3 / patches / py3.7.1_fix-zlib-version.patch

Displaying Raw • Download


recipes/python3/patches/py3.7.1_fix-zlib-version.patch HEAD (8b8a5035) Text, 612 B

Tf85149--- Python-3.7.1/setup.py.orig 2018-10-20 08:04:19.000000000 +0200
T7ee787+++ Python-3.7.1/setup.py 2019-02-17 00:24:30.715904412 +0100
Tc9d1d9@@ -1410,7 +1410,8 @@ class PyBuildExt(build_ext):
if zlib_inc is not None:
zlib_h = zlib_inc[0] + '/zlib.h'
version = '"0.0.0"'
Tf85149- version_req = '"1.1.3"'
T7ee787+ version_req = '"{}"'.format(
T7ee787+ os.environ.get('ZLIB_VERSION', '1.1.3'))
if host_platform == 'darwin' and is_macosx_sdk_path(zlib_h):
zlib_h = os.path.join(macosx_sdk_root(), zlib_h[1:])
with open(zlib_h) as fp:


──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────